home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club (Business) 1997 July
/
Software of the Month Club - Business (Volume 239) (July 1997).iso
/
pc
/
code
/
debug
/
memmon.dir
/
00076_Script_Profile scripts
< prev
Wrap
Text File
|
1995-02-15
|
429b
|
15 lines
On ProfileCasts
set output = ""
repeat with temp = 1 to the number of castmembers
if the castType of cast temp <> #empty then
set castSize = the size of cast temp /1024
if castSize < 1 then
put "Cast" && temp && "is <1k" & RETURN after output
else
put "Cast" && temp && "is" && castSize & "k" & RETURN after output
end if
end if
end repeat
return output
end